home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / asmsrc / rebelssource.lha / Sources / LED.ASM < prev    next >
Encoding:
Assembly Source File  |  1994-07-09  |  337 b   |  21 lines

  1.  
  2. ; Hardcore MC8051 Led Handling Code done by Zulu & Grey of Rebels
  3.  
  4.         DEFSEG LED,start=0000H,CLASS=CODE
  5.  
  6.         SEG    LED
  7.  
  8. START:  setb   p1.6
  9.         clr    p1.5
  10.         clr    p1.7
  11.         clr    p1.4
  12.  
  13.         mov     c,p1.6
  14. LOOP:
  15.         setb    p1.6
  16.         clr     p1.6
  17.         ljmp    LOOP
  18.  
  19.         END
  20.  
  21.